Skip to content

Instantly share code, notes, and snippets.

@stephancasas
stephancasas / symbolichotkeynames.txt
Created August 13, 2026 00:38
macOS SymbolicHotKey Names
0: ProcIntr
1: SwitchFwd
2: SwitchBack
3: SessionIntr
4: ScreenSaver
5: DiskEject
6: ProcKill
7: AccessMenu
8: AccessDock
9: AccessWindow

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@Hona
Hona / code-like-luke.md
Created August 13, 2026 01:44
OpenCode slash command for happy-path-first, use-case-oriented software design
description Implement with clear orchestration, strong interfaces, and happy-path-first design

Code like Luke.

Implement the requested change, but optimize the design for the normal user flow. If the happy path is 95% of runtime behavior, it should be approximately 95% of the code readers see.

Start with context:

  • inspect the existing code, callsites, data flow, and nearby conventions
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<script src="Scripts/isRockFx.js"></script>
<script>
$(function () {
@FranklinYu
FranklinYu / README.markdown
Last active August 13, 2026 12:34
links for old versions of Docker for Mac (inspired by docker/for-mac#1120)

links for old versions of Docker for Mac

Deprecated

Docker provides download links in release note. They promised that

(we) will also include download links in release notes for future releases.

Note:

@smontlouis
smontlouis / index.html
Created August 12, 2026 09:54
please don't sue me
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 64 64%22><circle cx=%2232%22 cy=%2232%22 r=%2230%22 fill=%22%235b7fe5%22/><circle cx=%2224%22 cy=%2228%22 r=%225%22/><circle cx=%2240%22 cy=%2228%22 r=%225%22/></svg>"
/>
@CodingKoopa
CodingKoopa / apt.md
Last active August 13, 2026 12:23
APT Repositories Explained

Intro

To install and update packages on Debian, Ubuntu, or most derived distributions, you use APT, the Advanced packaging tool, to download the packages and their dependencies, which uses dpkg to install them.

These notes go into the downloading part, as I think it's easy to get overwhelmed by how the repositories work. I will eventually turn this into a page on my website.

Repository

A repository is where the packages come from. It provides binary packages for an arbitrary selection of architectures as well as source packages. Repositories are APT's data source. [https://wiki.debian.org/DebianRepository]

@toomanybrians
toomanybrians / ai-second-brain-starter-prompt.md
Last active August 13, 2026 12:20
Starter prompt for your AI to interview you and set up an AI second brain / AI personal knowledge system

Build your own AI second brain starter prompt

A starter prompt you can drop into any AI platform to get going. Originally created in Feb 2026, updated in June 2026 to address latest changes to AI capabilities.

This was generated by my second brain by asking it to generate a starter prompt that others could use to build a similar system. Fork / branch / modify / share / try it!

See my related LinkedIn article which explains more about my experience using this, and the implications to knowledge work once everyone is working this way.